A quick recap on .NET
Nuh
Recap of .NET Core intro
- A quick history of .NET (framework, core) and their differences
- .NET cli
- .NET console
- .NET web app walk through
- IIS vs Kestrel
- what is csproj and what has changed? nuget packages
- web.config and why it was needed, and how to add it in if needed
- Startup - what it is
- Configuring services, i.e. 3rd party libraries using dependency injection [Autofac for complicated/custom DI or even scrutor]
- Configure, and how anything that isn’t setup here will fail to run on your request. Even serving static files won’t work without setting it up here
- Endpoints, and why UseEndpoints was exposed? Because of UseHealthchecks
- Logging and the various types. Recommended Seq